home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / config / findpath < prev    next >
Text File  |  1999-09-16  |  206b  |  14 lines

  1. #! /bin/sh
  2.  
  3. SCIDIR=`pwd`
  4.  
  5. if test -f Path.incl; then
  6.   PATH_INCL=`cat Path.incl`
  7. fi
  8. if test "$PATH_INCL" != "SCIDIR=$SCIDIR"; then
  9.   echo "creating Path.incl"
  10.   cat << EOF > Path.incl
  11. SCIDIR=$SCIDIR
  12. EOF
  13. fi
  14.